home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / sfilter.h < prev    next >
C/C++ Source or Header  |  1997-05-28  |  5KB  |  126 lines

  1. /* Copyright (C) 1993, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* sfilter.h */
  20. /* Definitions for simple Ghostscript streams */
  21. /* Requires scommon.h; should require strimpl.h only if any templates */
  22. /* are referenced, but some compilers always require strimpl.h. */
  23.  
  24. #include "gstypes.h"            /* for gs_[const_]string */
  25.  
  26. /*
  27.  * Define the processing states of the simplest Ghostscript streams.
  28.  * We use abbreviations for the stream names so as not to exceed the
  29.  * 31-character limit that some compilers put on identifiers.
  30.  *
  31.  * The processing state of a stream has three logical sections:
  32.  * parameters set by the client before the stream is opened,
  33.  * values computed from the parameters at initialization time,
  34.  * and values that change dynamically.  Unless otherwise indicated,
  35.  * all structure members change dynamically.
  36.  */
  37.  
  38. /* (T)BCPEncode */
  39. /* (no state) */
  40. extern const stream_template s_BCPE_template;
  41. extern const stream_template s_TBCPE_template;
  42.  
  43. /* (T)BCPDecode */
  44. typedef struct stream_BCPD_state_s {
  45.     stream_state_common;
  46.         /* The client sets the following before initialization. */
  47.     int (*signal_interrupt)(P1(stream_state *));
  48.     int (*request_status)(P1(stream_state *));
  49.         /* The following are updated dynamically. */
  50.     bool escaped;
  51.     int matched;            /* TBCP only */
  52.     int copy_count;            /* TBCP only */
  53.     const byte _ds *copy_ptr;    /* TBCP only */
  54. } stream_BCPD_state;
  55. #define private_st_BCPD_state()    /* in sbcp.c */\
  56.   gs_private_st_simple(st_BCPD_state, stream_BCPD_state, "(T)BCPDecode state")
  57. extern const stream_template s_BCPD_template;
  58. extern const stream_template s_TBCPD_template;
  59.  
  60. /* eexecEncode */
  61. typedef struct stream_exE_state_s {
  62.     stream_state_common;
  63.         /* The following parameters are set by the client. */
  64.     ushort cstate;        /* encryption state */
  65. } stream_exE_state;
  66. #define private_st_exE_state()    /* in sfilter1.c */\
  67.   gs_private_st_simple(st_exE_state, stream_exE_state, "eexecEncode state")
  68. extern const stream_template s_exE_template;
  69.  
  70. /* eexecDecode */
  71. typedef struct stream_PFBD_state_s stream_PFBD_state;
  72. typedef struct stream_exD_state_s {
  73.     stream_state_common;
  74.         /* The following parameters are set by the client. */
  75.     ushort cstate;        /* encryption state */
  76.     stream_PFBD_state *pfb_state;    /* state of underlying */
  77.                 /* PFBDecode stream, if any */
  78.     int binary;        /* 1=binary, 0=hex, -1=don't know yet */
  79.     int lenIV;        /* # of initial decoded bytes to skip */
  80.         /* The following change dynamically. */
  81.     int odd;        /* odd digit */
  82.     long record_left;    /* data left in binary record in .PFB file, */
  83.                 /* max_long if not reading a .PFB file */
  84.     int skip;        /* # of decoded bytes to skip */
  85. } stream_exD_state;
  86. #define private_st_exD_state()    /* in seexec.c */\
  87.   gs_private_st_ptrs1(st_exD_state, stream_exD_state, "eexecDecode state",\
  88.     exd_enum_ptrs, exd_reloc_ptrs, pfb_state)
  89. extern const stream_template s_exD_template;
  90.  
  91. /* NullEncode/Decode */
  92. /* (no state) */
  93. extern const stream_template s_Null_template;
  94. #define s_NullE_template s_Null_template
  95. #define s_NullD_template s_Null_template
  96.  
  97. /* PFBDecode */
  98. /* The typedef for the state appears under eexecDecode above. */
  99. /*typedef*/ struct stream_PFBD_state_s {
  100.     stream_state_common;
  101.         /* The following parameters are set by the client. */
  102.     int binary_to_hex;
  103.         /* The following change dynamically. */
  104.     int record_type;
  105.     ulong record_left;        /* bytes left in current record */
  106. } /*stream_PFBD_state*/;
  107. #define private_st_PFBD_state()    /* in sfilter1.c */\
  108.   gs_private_st_simple(st_PFBD_state, stream_PFBD_state, "PFBDecode state")
  109. extern const stream_template s_PFBD_template;
  110.  
  111. /* SubFileDecode */
  112. typedef struct stream_SFD_state_s {
  113.     stream_state_common;
  114.         /* The following parameters are set by the client. */
  115.     long count;        /* # of EODs to scan over */
  116.     gs_const_string eod;
  117.         /* The following change dynamically. */
  118.     uint match;        /* # of matched chars not copied to output */
  119.     uint copy_count;    /* # of matched characters left to copy */
  120.     uint copy_ptr;        /* index of next character to copy */
  121. } stream_SFD_state;
  122. #define private_st_SFD_state()    /* in sfilter1.c */\
  123.   gs_private_st_composite(st_SFD_state, stream_SFD_state,\
  124.     "SubFileDecode state", sfd_enum_ptrs, sfd_reloc_ptrs)
  125. extern const stream_template s_SFD_template;
  126.